home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
02
/
0
/
DISK0204.ZIP
/
GDEL.DOC
< prev
next >
Wrap
Text File
|
1984-03-26
|
1KB
|
33 lines
/* GDEL.C
Copyright (c) 1984, Gordon Lee Waite
413 W. Pleasant Street
Maquoketa, Iowa 52060
summary: gdel d:xxxxxxx.xxx
arguments: d:xxxxxxxx.xxx specifies the ambiguous file
name used for the directory search
if the d:xxxxxxxx.xxx is left out, GCOPY
assumes the users wants *.*
description: GDEL is used to delete files from the current
drive. The user may enter an ambiguous
file name. The program then goes through the
matching files it finds in the directory and
displays them for the user. The user marks
the files that are to be deleted. When all
are marked, the user hits the ESC key, and
the files will be deleted.
This program was compiled using the Manz Aztec C Compiler
The compile and link process is as follows:
c86 gdel.c
as86 -o gdel.o gdel.asm
ln -o gdel.exe gdel.o gorlib.lib dosa.lib videoa.lib libc.lib
multdel gdel.o gdel.asm
*/